home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-11-04 | 676 b | 42 lines | [TEXT/PJMM] |
- unit Globals;
-
- interface
-
- const
- vers = 'v 1.31';
-
- cursorDev = 14;
-
- iSettings = 1;
- iText = 2;
- iPict = 3;
- iPictRect = 4;
- iTextRect = 5;
- iCopyrightRect = 6;
-
- type
- SampleStorage = record
- dlgPtr: DialogPtr;
- dlgItems: Integer;
- end;
- samplePtr = ^SampleStorage;
- sampleHdl = ^samplePtr;
- prefStorage = packed record
- signature: OSType;
- ptrAddress: LongInt;
- fontNum: Integer;
- fontSize: Integer;
- offset: Integer;
- stringWid: Integer;
- vPos: Integer;
- clockColor: RGBColor;
- clockRect: Rect;
- useClockColor: Byte;
- timeWithSecs: Byte;
- end;
- prefPtr = ^PrefStorage;
- prefHandle = ^prefPtr;
-
- implementation
-
- end.